home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_03 / kamradt / profile.txt < prev    next >
Text File  |  1994-02-07  |  211b  |  12 lines

  1. // Why isn't the while loop
  2. // ever executed?
  3.  
  4. time    count
  5. 0.0012  50  int flag = 0;
  6. 0.0031  50  while(flag = 0)
  7.             {
  8. 0.0000  0     if(doTilTrue())
  9. 0.0000  0       flag = 1;
  10.             }
  11.  
  12.